home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / olecon~1 / controls / localize / localize.rc < prev    next >
Text File  |  1995-11-25  |  4KB  |  127 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Localize.Rc
  3. /////////////////////////////////////////////////////////////////////////////
  4. // Copyright  1995  Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
  9. // PARTICULAR PURPOSE.
  10. /////////////////////////////////////////////////////////////////////////////
  11. //
  12. // contains the resources for our DLL, including the TypeLib, error strings,
  13. // and versioning information.
  14. //
  15. #include "Resource.H"
  16. #include "Windows.H"
  17.  
  18. #define IDC_STATIC -1
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. //
  22. // Bitmap and Icons that are not localized
  23. //
  24. RESID_TOOLBOX_BITMAP    BITMAP DISCARDABLE "LocalizeCtl.Bmp"
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. //
  28. // Our Non-Localized Type Library
  29. //
  30. 1 TYPELIB Localize.TLB
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. //
  34. //    This table includes the languages supported by this server.
  35. //    Each language maps to a satalite DLL that contains error messages.
  36. //
  37. //      - if you do not want to use satellite Localization, then
  38. //        remove this table
  39. //      - TODO: add any new languages you wish to support to this table
  40. //
  41. INTLSZ_LANGMAP RCDATA DISCARDABLE 
  42. BEGIN
  43. //    Primary Language ID  SubLanguage ID          Satalite DLL
  44. //    -------------------  --------------          ------------
  45.     LANG_FRENCH,         SUBLANG_FRENCH,         "LocalizeFR.DLL","\0",
  46.     LANG_JAPANESE,       SUBLANG_DEFAULT,        "LocalizeJP.DLL","\0",
  47. END
  48.  
  49.  
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52. // EVERYTHING FROM HERE UNTIL THE VERSION RESOURCES IS LOCALIZABLE         //
  53. /////////////////////////////////////////////////////////////////////////////
  54.  
  55.  
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58. //
  59. // String tables with Exception Information, etc.
  60. //
  61. STRINGTABLE DISCARDABLE
  62. BEGIN
  63.     IDS_PROPERTIES,                     "Localize Properties"
  64.     IDS_LOCALIZE_GENERALPAGETITLE,        "General Properties"
  65. END
  66.  
  67. /////////////////////////////////////////////////////////////////////////////
  68. //
  69. // Property Page Dialog
  70. //
  71.  
  72. IDD_PROPPAGE_LOCALIZEGENERAL DIALOG DISCARDABLE  0, 0, 195, 127
  73. STYLE WS_CHILD | 0x4
  74. FONT 8, "MS Sans Serif"
  75. BEGIN
  76. END
  77.  
  78. /////////////////////////////////////////////////////////////////////////////
  79. // Version Information
  80. /////////////////////////////////////////////////////////////////////////////
  81. //
  82. #include "dwinvers.h"
  83. #include <winver.h>
  84.  
  85. VS_VERSION_INFO VERSIONINFO
  86.  
  87. FILEVERSION    04,00,vusVersNumf2,vusVersNuml2 //<----- This is used by setup!
  88. PRODUCTVERSION    04,00,vusVersNumf2,vusVersNuml2
  89.  
  90.  
  91. FILEFLAGSMASK    VS_FFI_FILEFLAGSMASK
  92. #ifdef DEBUG
  93. FILEFLAGS    VS_FF_DEBUG
  94. #else
  95. FILEFLAGS    0L
  96. #endif
  97.  
  98. FILEOS        VOS_NT_WINDOWS32
  99.  
  100. FILETYPE    VFT_DLL
  101. FILESUBTYPE    0
  102. {
  103.     BLOCK "StringFileInfo"
  104.     {
  105.         BLOCK "040904B0" // Language and character set identifiers.
  106.         {
  107.             VALUE "CompanyName",     "My Company Name\0"
  108.             VALUE "FileDescription", "Localize"
  109.             VALUE "FileVersion",     vszVersNumAll
  110.             VALUE "InternalName",    "Localize.Ocx\0"
  111.             VALUE "LegalCopyright",  vszCopyright
  112.             VALUE "LegalTrademarks", "Put Legal TradeMarks here ...\0"
  113.             VALUE "ProductName",     "Localize Object Library\0"
  114.             VALUE "ProductVersion",  vszVersNumAll
  115.             VALUE "Comments",        vszMakeDate
  116.             VALUE "OLESelfRegister", "\0"
  117.         }
  118.     }
  119.     BLOCK "VarFileInfo"
  120.     {
  121.         VALUE "Translation" ,0x409, 0x4b0
  122.     }
  123. }
  124.  
  125.  
  126.  
  127.